page.jsx 329 B

1234567891011
  1. import DaysExplorer from "@/components/explorer/levels/DaysExplorer";
  2. /**
  3. * /:branch/:year/:month
  4. *
  5. * Explorer level: lists days for month.
  6. */
  7. export default async function BranchYearMonthPage({ params }) {
  8. const { branch, year, month } = await params;
  9. return <DaysExplorer branch={branch} year={year} month={month} />;
  10. }